home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / ibnum.c < prev    next >
C/C++ Source or Header  |  1996-05-28  |  6KB  |  209 lines

  1. /* Copyright (C) 1990, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* ibnum.c */
  20. /* Level 2 encoded number reading utilities for Ghostscript */
  21. #include "math_.h"
  22. #include "memory_.h"
  23. #include "ghost.h"
  24. #include "errors.h"
  25. #include "stream.h"
  26. #include "ibnum.h"
  27. #include "imemory.h"        /* for iutil.h */
  28. #include "iutil.h"
  29.  
  30. /* Define the number of bytes for a given format of encoded number. */
  31. const byte enc_num_bytes[] = { enc_num_bytes_values };
  32.  
  33. /* ------ Encoded number reading ------ */
  34.  
  35. /* Set up to read from an encoded number array/string. */
  36. /* Return <0 for error, or a number format. */
  37. int
  38. num_array_format(const ref *op)
  39. {    switch ( r_type(op) )
  40.       {
  41.       case t_string:
  42.         {    /* Check that this is a legitimate encoded number string. */
  43.         const byte *bp = op->value.bytes;
  44.         int format = bp[1];
  45.  
  46.         if ( r_size(op) < 4 || bp[0] != bt_num_array_value ||
  47.             !num_is_valid(format)
  48.            )
  49.           return_error(e_rangecheck);
  50.         if ( sdecodeshort(bp + 2, format) !=
  51.              (r_size(op) - 4) / encoded_number_bytes(format)
  52.            )
  53.           return_error(e_rangecheck);
  54.         return format;
  55.       }
  56.     case t_array:
  57.     case t_mixedarray:
  58.     case t_shortarray:
  59.         return num_array;
  60.     default:
  61.         return_error(e_typecheck);
  62.        }
  63. }
  64.  
  65. /* Get the number of elements in an encoded number array/string. */
  66. uint
  67. num_array_size(const ref *op, int format)
  68. {    return (format == num_array ? r_size(op) :
  69.         (r_size(op) - 4) / encoded_number_bytes(format));
  70. }
  71.  
  72. /* Get an encoded number from an array/string according to the given format. */
  73. /* Put the value in np->value.{intval,realval}. */
  74. /* Return t_int if integer, t_real if real, t_null if end of stream, */
  75. /* or an error if the format is invalid. */
  76. int
  77. num_array_get(const ref *op, int format, uint index, ref *np)
  78. {    if ( format == num_array )
  79.       {    int code = array_get(op, (long)index, np);
  80.         if ( code < 0 )
  81.           return t_null;
  82.         switch ( r_type(np) )
  83.           {
  84.           case t_integer:
  85.             return t_integer;
  86.           case t_real:
  87.             return t_real;
  88.           default:
  89.             return_error(e_rangecheck);
  90.           }
  91.       }
  92.     else
  93.       {    uint nbytes = encoded_number_bytes(format);
  94.         if ( index >= (r_size(op) - 4) / nbytes )
  95.           return t_null;
  96.         return sdecode_number(op->value.bytes + 4 + index * nbytes,
  97.                       format, np);
  98.       }
  99. }
  100.  
  101. /* Internal routine to decode a number in a given format. */
  102. /* Same returns as sget_encoded_number. */
  103. static const double binary_scale[32] = {
  104. #define expn2(n) (0.5 / (1L << (n-1)))
  105.     1.0, expn2(1), expn2(2), expn2(3),
  106.     expn2(4), expn2(5), expn2(6), expn2(7),
  107.     expn2(8), expn2(9), expn2(10), expn2(11),
  108.     expn2(12), expn2(13), expn2(14), expn2(15),
  109.     expn2(16), expn2(17), expn2(18), expn2(19),
  110.     expn2(20), expn2(21), expn2(22), expn2(23),
  111.     expn2(24), expn2(25), expn2(26), expn2(27),
  112.     expn2(28), expn2(29), expn2(30), expn2(31)
  113. #undef expn2
  114. };
  115. int
  116. sdecode_number(const byte *str, int format, ref *np)
  117. {    switch ( format & 0x170 )
  118.        {
  119.     case num_int32: case num_int32 + 16:
  120.         if ( (format & 31) == 0 )
  121.           {    np->value.intval = sdecodelong(str, format);
  122.             return t_integer;
  123.           }
  124.         else
  125.           {    np->value.realval =
  126.               (double)sdecodelong(str, format) *
  127.                 binary_scale[format & 31];
  128.             return t_real;
  129.           }
  130.     case num_int16:
  131.         if ( (format & 15) == 0 )
  132.           {    np->value.intval = sdecodeshort(str, format);
  133.             return t_integer;
  134.           }
  135.         else
  136.           {    np->value.realval =
  137.               sdecodeshort(str, format) *
  138.                 binary_scale[format & 15];
  139.             return t_real;
  140.           }
  141.     case num_float:
  142.         np->value.realval = sdecodefloat(str, format);
  143.         return t_real;
  144.     default:
  145.         return_error(e_syntaxerror);    /* invalid format?? */
  146.        }
  147. }
  148.  
  149. /* ------ Decode number ------ */
  150.  
  151. /* Decode encoded numbers from a string according to format. */
  152.  
  153. /* Decode a (16-bit, signed) short. */
  154. short
  155. sdecodeshort(register const byte *p, int format)
  156. {    int a = p[0], b = p[1];
  157.     short v = (num_is_lsb(format) ? (b << 8) + a : (a << 8) + b);
  158. #if arch_sizeof_short == 2
  159.     return v;
  160. #else
  161.     /* Sign-extend if sizeof(short) > 2. */
  162.     return (v & 0x7fff) - (v & 0x8000);
  163. #endif
  164. }
  165.  
  166. /* Decode a (32-bit, signed) long. */
  167. long
  168. sdecodelong(register const byte *p, int format)
  169. {    int a = p[0], b = p[1], c = p[2], d = p[3];
  170.     long v = (num_is_lsb(format) ?
  171.           ((long)d << 24) + ((long)c << 16) + (b << 8) + a :
  172.           ((long)a << 24) + ((long)b << 16) + (c << 8) + d);
  173. #if arch_sizeof_long == 4
  174.     return v;
  175. #else
  176.     /* Sign-extend if sizeof(long) > 4. */
  177.     return (v & 0x7fffffffL) - (v & 0x80000000L);
  178. #endif
  179. }
  180.  
  181. /* Decode a float.  We don't handle non-IEEE native representations yet. */
  182. float
  183. sdecodefloat(register const byte *p, int format)
  184. {    float fnum;
  185.     if ( format != num_float_native )
  186.     {    bits32 lnum = (bits32)sdecodelong(p, format);
  187.         /* We know IEEE floats take 32 bits. */
  188. #if !arch_floats_are_IEEE
  189.         /* Convert IEEE float to native float. */
  190.         int sign_expt = lnum >> 23;
  191.         int expt = sign_expt & 0xff;
  192.         long mant = lnum & 0x7fffff;
  193.         if ( expt == 0 && mant == 0 )
  194.           fnum = 0;
  195.         else
  196.           {    mant += 0x800000;
  197.             fnum = (float)ldexp((float)mant, expt - 127 - 24);
  198.           }
  199.         if ( sign_expt & 0x100 )
  200.           fnum = -fnum;
  201. #else
  202.         fnum = *(float *)&lnum;
  203. #endif
  204.     }
  205.     else
  206.         memcpy(&fnum, p, sizeof(float));
  207.     return fnum;
  208. }
  209.